home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / usenet / sources / volume89 / unix / gnused.1 < prev    next >
Text File  |  1989-07-12  |  48KB  |  1,522 lines

  1. Path: xanth!ames!apple!sun-barr!newstop!sun!swap!page
  2. From: page%swap@Sun.COM (Bob Page)
  3. Newsgroups: comp.sources.amiga
  4. Subject: v89i165:  gnused - gnu stream/script editor, Part01/03
  5. Message-ID: <115134@sun.Eng.Sun.COM>
  6. Date: 12 Jul 89 23:12:55 GMT
  7. Sender: news@sun.Eng.Sun.COM
  8. Lines: 1511
  9. Approved: page@sun.com
  10.  
  11. Submitted-by: ehoogerbeets@rose.waterloo.edu (Edwin Hoogerbeets)
  12. Posting-number: Volume 89, Issue 165
  13. Archive-name: unix/gnused.1
  14.  
  15. The gnu stream/script editor.
  16.  
  17. [Oops.  Binaries group says "Part01/03" but there's only one part.  ..bob]
  18.  
  19. # This is a shell archive.
  20. # Remove anything above and including the cut line.
  21. # Then run the rest of the file through 'sh'.
  22. # Unpacked files will be owned by you and have default permissions.
  23. #----cut here-----cut here-----cut here-----cut here----#
  24. #!/bin/sh
  25. # shar: SHell ARchive
  26. # Run the following text through 'sh' to create:
  27. #    README
  28. #    README.amiga
  29. #    alloca.c
  30. #    dir.c
  31. #    dir.h
  32. #    getopt.c
  33. #    glob.c
  34. # This is archive 1 of a 3-part kit.
  35. # This archive created: Wed Jul 12 15:53:23 1989
  36. echo "extracting README"
  37. sed 's/^X//' << \SHAR_EOF > README
  38. XThis is the 'new, improvevd' GNU sed.  Please report all bugs, comments,
  39. Xrequests for features, etc to hack@gnu.ai.mit.edu or hack@wheaties.ai.mit.edu
  40. Xor hack@media-lab.media.mit.edu or hack@lsrhs.UUCP (ONE of them should work.)
  41. X
  42. XTo compile sed, use something on the order of
  43. Xcc -g -I. -o sed sed.c regex.c glob.c
  44. SHAR_EOF
  45. echo "extracting README.amiga"
  46. sed 's/^X//' << \SHAR_EOF > README.amiga
  47. XChanges made for the Amiga version:
  48. X
  49. X  - added in definitions for memset, memcpy
  50. X  - added in correct include files
  51. X  - included alloca and getopt distributed with GnuGrep
  52. X  - wrote BSD-like opendir, readdir, and closedir for the Amiga
  53. X    (see dir.c, dir.h)
  54. X  - wrote memchr, and rewrote memmove and panic
  55. X
  56. XIf a memory exhausted error occurs, don't worry. (Be happy.)
  57. XThis version of sed uses the Manx heapmem routines. These routines
  58. Xpre-allocate a fixed size chunk of memory to deal out in the
  59. Xindividual malloc and realloc calls. If you want to increase the
  60. Xsize of this chunk, there is a global variable called _Heapsize,
  61. Xwhich is set in main() in sed.c. Currently, it is set at 80K.
  62. XYou may change it to be bigger (or smaller), but I found that
  63. X80K was about right. This means, of course, that GnuSed requires
  64. X120-150K of memory or so to run, with the 80K being a contiguous block.
  65. X
  66. XThis is still GNU code, and as such, it conforms to the GNU
  67. Xpublic license. (see the comment at the beginning of grep.c)
  68. XAny problems with the Amiga version, please send them to me at:
  69. X
  70. XEdwin Hoogerbeets
  71. XUsenet: ehoogerbeets@rose.waterloo.edu (watmath!watrose!ehoogerbeets) or
  72. X        edwin@watcsc.waterloo.edu
  73. XCIS:    72647,3675 (any time at all)
  74. X
  75. X
  76. XSend any problems inherent in the source to:
  77. X
  78. Xhack@wheaties.ai.mit.edu
  79. X
  80. SHAR_EOF
  81. echo "extracting alloca.c"
  82. sed 's/^X//' << \SHAR_EOF > alloca.c
  83. X/*
  84. X        alloca -- (mostly) portable public-domain implementation -- D A Gwyn
  85. X
  86. X        This implementation of the PWB library alloca() function,
  87. X        which is used to allocate space off the run-time stack so
  88. X        that it is automatically reclaimed upon procedure exit,
  89. X        was inspired by discussions with J. Q. Johnson of Cornell.
  90. X
  91. X        It should work under any C implementation that uses an
  92. X        actual procedure stack (as opposed to a linked list of
  93. X        frames).  There are some preprocessor constants that can
  94. X        be defined when compiling for your specific system, for
  95. X        improved efficiency; however, the defaults should be okay.
  96. X
  97. X        The general concept of this implementation is to keep
  98. X        track of all alloca()-allocated blocks, and reclaim any
  99. X        that are found to be deeper in the stack than the current
  100. X        invocation.  This heuristic does not reclaim storage as
  101. X        soon as it becomes invalid, but it will do so eventually.
  102. X
  103. X        As a special case, alloca(0) reclaims storage without
  104. X        allocating any.  It is a good idea to use alloca(0) in
  105. X        your main control loop, etc. to force garbage collection.
  106. X*/
  107. X#ifndef lint
  108. Xstatic char     SCCSid[] = "@(#)alloca.c        1.1";   /* for the "what" utility */
  109. X#endif
  110. X
  111. X#ifdef emacs
  112. X#include "config.h"
  113. X#ifdef static
  114. X/* actually, only want this if static is defined as ""
  115. X   -- this is for usg, in which emacs must undefine static
  116. X   in order to make unexec workable
  117. X   */
  118. X#ifndef STACK_DIRECTION
  119. Xyou
  120. Xlose
  121. X-- must know STACK_DIRECTION at compile-time
  122. X#endif /* STACK_DIRECTION undefined */
  123. X#endif static
  124. X#endif emacs
  125. X
  126. X#ifdef X3J11
  127. Xtypedef void    *pointer;               /* generic pointer type */
  128. X#else
  129. Xtypedef char    *pointer;               /* generic pointer type */
  130. X#endif
  131. X
  132. X#define NULL    0                       /* null pointer constant */
  133. X
  134. Xextern void     free();
  135. Xextern pointer  malloc();
  136. X
  137. X#ifdef AMIGA
  138. X#define STACK_DIRECTION -1
  139. X#endif
  140. X
  141. X/*
  142. X        Define STACK_DIRECTION if you know the direction of stack
  143. X        growth for your system; otherwise it will be automatically
  144. X        deduced at run-time.
  145. X
  146. X        STACK_DIRECTION > 0 => grows toward higher addresses
  147. X        STACK_DIRECTION < 0 => grows toward lower addresses
  148. X        STACK_DIRECTION = 0 => direction of growth unknown
  149. X*/
  150. X
  151. X#ifndef STACK_DIRECTION
  152. X#define STACK_DIRECTION 0               /* direction unknown */
  153. X#endif
  154. X
  155. X#if STACK_DIRECTION != 0
  156. X
  157. X#define STACK_DIR       STACK_DIRECTION /* known at compile-time */
  158. X
  159. X#else   /* STACK_DIRECTION == 0; need run-time code */
  160. X
  161. Xstatic int      stack_dir;              /* 1 or -1 once known */
  162. X#define STACK_DIR       stack_dir
  163. X
  164. Xstatic void
  165. Xfind_stack_direction (/* void */)
  166. X{
  167. X  static char   *addr = NULL;   /* address of first
  168. X                                   `dummy', once known */
  169. X  auto char     dummy;          /* to get stack address */
  170. X
  171. X  if (addr == NULL)
  172. X    {                           /* initial entry */
  173. X      addr = &dummy;
  174. X
  175. X      find_stack_direction ();  /* recurse once */
  176. X    }
  177. X  else                          /* second entry */
  178. X    if (&dummy > addr)
  179. X      stack_dir = 1;            /* stack grew upward */
  180. X    else
  181. X      stack_dir = -1;           /* stack grew downward */
  182. X}
  183. X
  184. X#endif  /* STACK_DIRECTION == 0 */
  185. X
  186. X/*
  187. X        An "alloca header" is used to:
  188. X        (a) chain together all alloca()ed blocks;
  189. X        (b) keep track of stack depth.
  190. X
  191. X        It is very important that sizeof(header) agree with malloc()
  192. X        alignment chunk size.  The following default should work okay.
  193. X*/
  194. X
  195. X#ifndef ALIGN_SIZE
  196. X#define ALIGN_SIZE      sizeof(double)
  197. X#endif
  198. X
  199. Xtypedef union hdr
  200. X{
  201. X  char  align[ALIGN_SIZE];      /* to force sizeof(header) */
  202. X  struct
  203. X    {
  204. X      union hdr *next;          /* for chaining headers */
  205. X      char *deep;               /* for stack depth measure */
  206. X    } h;
  207. X} header;
  208. X
  209. X/*
  210. X        alloca( size ) returns a pointer to at least `size' bytes of
  211. X        storage which will be automatically reclaimed upon exit from
  212. X        the procedure that called alloca().  Originally, this space
  213. X        was supposed to be taken from the current stack frame of the
  214. X        caller, but that method cannot be made to work for some
  215. X        implementations of C, for example under Gould's UTX/32.
  216. X*/
  217. X
  218. Xstatic header *last_alloca_header = NULL; /* -> last alloca header */
  219. X
  220. Xpointer
  221. Xalloca (size)                   /* returns pointer to storage */
  222. X     unsigned   size;           /* # bytes to allocate */
  223. X{
  224. X  auto char     probe;          /* probes stack depth: */
  225. X  register char *depth = &probe;
  226. X
  227. X#if STACK_DIRECTION == 0
  228. X  if (STACK_DIR == 0)           /* unknown growth direction */
  229. X    find_stack_direction ();
  230. X#endif
  231. X
  232. X                                /* Reclaim garbage, defined as all alloca()ed storage that
  233. X                                   was allocated from deeper in the stack than currently. */
  234. X
  235. X  {
  236. X    register header     *hp;    /* traverses linked list */
  237. X
  238. X    for (hp = last_alloca_header; hp != NULL;)
  239. X      if (STACK_DIR > 0 && hp->h.deep > depth
  240. X          || STACK_DIR < 0 && hp->h.deep < depth)
  241. X        {
  242. X          register header       *np = hp->h.next;
  243. X
  244. X          free ((pointer) hp);  /* collect garbage */
  245. X
  246. X          hp = np;              /* -> next header */
  247. X        }
  248. X      else
  249. X        break;                  /* rest are not deeper */
  250. X
  251. X    last_alloca_header = hp;    /* -> last valid storage */
  252. X  }
  253. X
  254. X  if (size == 0)
  255. X    return NULL;                /* no allocation required */
  256. X
  257. X  /* Allocate combined header + user data storage. */
  258. X
  259. X  {
  260. X    register pointer    new = malloc (sizeof (header) + size);
  261. X    /* address of header */
  262. X
  263. X    ((header *)new)->h.next = last_alloca_header;
  264. X    ((header *)new)->h.deep = depth;
  265. X
  266. X    last_alloca_header = (header *)new;
  267. X
  268. X    /* User storage begins just after header. */
  269. X
  270. X    return (pointer)((char *)new + sizeof(header));
  271. X  }
  272. X}
  273. SHAR_EOF
  274. echo "extracting dir.c"
  275. sed 's/^X//' << \SHAR_EOF > dir.c
  276. X/*
  277. X *
  278. X * BSD-like directory searching routines
  279. X * Edwin Hoogerbeets 1989
  280. X *
  281. X */
  282. X#ifdef AMIGA
  283. X#include <stdio.h>
  284. X#include "dir.h"
  285. X#include <exec/memory.h>
  286. X
  287. Xextern char *malloc();
  288. Xextern char *free();
  289. Xextern struct FileLock *Lock();
  290. Xextern char  *AllocMem();
  291. X
  292. Xstatic struct direct direntry;
  293. X
  294. X#define FIBSIZE (long)sizeof(struct FileInfoBlock)
  295. X
  296. XDIR *opendir(filename)
  297. Xchar *filename;
  298. X{
  299. X  DIR *dir;
  300. X
  301. X  if ( !(dir = (DIR *) malloc(sizeof(DIR))) ) {
  302. X    return(NULL);
  303. X  }
  304. X
  305. X  /* needs to be long word aligned, so AllocMem must be used */
  306. X  if ( !(dir->fib = (struct FileInfoBlock *)
  307. X                                   AllocMem(FIBSIZE,MEMF_CLEAR)) ) {
  308. X    free(dir);
  309. X    return(NULL);
  310. X  }
  311. X
  312. X  if ( !(dir->lock = Lock(filename,ACCESS_READ)) ) {
  313. X    FreeMem(dir->fib,FIBSIZE);
  314. X    free(dir);
  315. X    return(NULL);
  316. X  }
  317. X
  318. X  Examine(dir->lock,dir->fib);
  319. X  strncpy(dir->name,filename,31L);
  320. X
  321. X  return(dir);
  322. X}
  323. X
  324. Xstruct direct *readdir(dir)
  325. XDIR *dir;
  326. X{
  327. X  if ( dir ) {
  328. X    if ( ExNext(dir->lock,dir->fib) ) {
  329. X      strcpy(direntry.d_name,dir->fib->fib_FileName);
  330. X      direntry.d_namlen = strlen(direntry.d_name);
  331. X
  332. X      /* inode number emulation! */
  333. X      direntry.d_ino = dir->fib->fib_DiskKey;
  334. X
  335. X      direntry.d_reclen = sizeof(struct direct) - MAXNAMELEN +
  336. X                          direntry.d_namlen + 1;
  337. X
  338. X      return(&direntry);
  339. X    } else {
  340. X      return(NULL);
  341. X    }
  342. X  } else {
  343. X    return(NULL);
  344. X  }
  345. X}
  346. X
  347. Xvoid closedir(dir)
  348. XDIR *dir;
  349. X{
  350. X  if ( dir ) {
  351. X    UnLock(dir->lock);
  352. X    FreeMem(dir->fib,FIBSIZE);
  353. X    free(dir);
  354. X  }
  355. X}
  356. X
  357. X#endif /* AMIGA */
  358. SHAR_EOF
  359. echo "extracting dir.h"
  360. sed 's/^X//' << \SHAR_EOF > dir.h
  361. X/*
  362. X *
  363. X * BSD-like directory searching for Manx C
  364. X * Edwin Hoogerbeets 1989
  365. X *
  366. X */
  367. X
  368. X#include <libraries/dosextens.h>
  369. X
  370. X#define MAXNAMELEN 31
  371. X
  372. Xstruct direct {
  373. X  ULONG  d_ino;
  374. X  USHORT d_reclen;
  375. X  USHORT d_namlen;
  376. X  char   d_name[MAXNAMELEN + 1];
  377. X};
  378. X
  379. X#if 0
  380. Xtypedef struct FileInfoBlock
  381. X  dirent;
  382. X
  383. X#define d_name fib_FileName
  384. X
  385. X#endif
  386. X
  387. Xtypedef struct DIR {
  388. X  struct FileLock *lock;      /* lock on the directory */
  389. X  char name[MAXNAMELEN+1];    /* name of the directory */
  390. X  struct FileInfoBlock *fib;  /* pointer to temporary space for searching */
  391. X  long loc;                   /* current location of the search */
  392. X} DIR;
  393. X
  394. Xextern DIR *opendir();
  395. Xextern struct direct *readdir();
  396. Xextern void closedir();
  397. X
  398. X
  399. X
  400. SHAR_EOF
  401. echo "extracting getopt.c"
  402. sed 's/^X//' << \SHAR_EOF > getopt.c
  403. X/* Getopt for GNU.
  404. X   Copyright (C) 1987 Free Software Foundation, Inc.
  405. X
  406. X                       NO WARRANTY
  407. X
  408. X  BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  409. XNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  410. XWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  411. XRICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  412. XWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  413. XBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  414. XFITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  415. XAND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  416. XDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  417. XCORRECTION.
  418. X
  419. X IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  420. XSTALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  421. XWHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  422. XLIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  423. XOTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  424. XUSE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  425. XDATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  426. XA FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  427. XPROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  428. XDAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  429. X
  430. X                GENERAL PUBLIC LICENSE TO COPY
  431. X
  432. X  1. You may copy and distribute verbatim copies of this source file
  433. Xas you receive it, in any medium, provided that you conspicuously and
  434. Xappropriately publish on each copy a valid copyright notice "Copyright
  435. X (C) 1987 Free Software Foundation, Inc."; and include following the
  436. Xcopyright notice a verbatim copy of the above disclaimer of warranty
  437. Xand of this License.  You may charge a distribution fee for the
  438. Xphysical act of transferring a copy.
  439. X
  440. X  2. You may modify your copy or copies of this source file or
  441. Xany portion of it, and copy and distribute such modifications under
  442. Xthe terms of Paragraph 1 above, provided that you also do the following:
  443. X
  444. X    a) cause the modified files to carry prominent notices stating
  445. X    that you changed the files and the date of any change; and
  446. X
  447. X    b) cause the whole of any work that you distribute or publish,
  448. X    that in whole or in part contains or is a derivative of this
  449. X    program or any part thereof, to be licensed at no charge to all
  450. X    third parties on terms identical to those contained in this
  451. X    License Agreement (except that you may choose to grant more
  452. X    extensive warranty protection to third parties, at your option).
  453. X
  454. X    c) You may charge a distribution fee for the physical act of
  455. X    transferring a copy, and you may at your option offer warranty
  456. X    protection in exchange for a fee.
  457. X
  458. X  3. You may copy and distribute this program or any portion of it in
  459. Xcompiled, executable or object code form under the terms of Paragraphs
  460. X1 and 2 above provided that you do the following:
  461. X
  462. X    a) cause each such copy to be accompanied by the
  463. X    corresponding machine-readable source code, which must
  464. X    be distributed under the terms of Paragraphs 1 and 2 above; or,
  465. X
  466. X    b) cause each such copy to be accompanied by a
  467. X    written offer, with no time limit, to give any third party
  468. X    free (except for a nominal shipping charge) a machine readable
  469. X    copy of the corresponding source code, to be distributed
  470. X    under the terms of Paragraphs 1 and 2 above; or,
  471. X
  472. X    c) in the case of a recipient of this program in compiled, executable
  473. X    or object code form (without the corresponding source code) you
  474. X    shall cause copies you distribute to be accompanied by a copy
  475. X    of the written offer of source code which you received along
  476. X    with the copy you received.
  477. X
  478. X  4. You may not copy, sublicense, distribute or transfer this program
  479. Xexcept as expressly provided under this License Agreement.  Any attempt
  480. Xotherwise to copy, sublicense, distribute or transfer this program is void and
  481. Xyour rights to use the program under this License agreement shall be
  482. Xautomatically terminated.  However, parties who have received computer
  483. Xsoftware programs from you with this License Agreement will not have
  484. Xtheir licenses terminated so long as such parties remain in full compliance.
  485. X
  486. X  5. If you wish to incorporate parts of this program into other free
  487. Xprograms whose distribution conditions are different, write to the Free
  488. XSoftware Foundation at 675 Mass Ave, Cambridge, MA 02139.  We have not yet
  489. Xworked out a simple rule that can be stated here, but we will often permit
  490. Xthis.  We will be guided by the two goals of preserving the free status of
  491. Xall derivatives of our free software and of promoting the sharing and reuse of
  492. Xsoftware.
  493. X
  494. X
  495. XIn other words, you are welcome to use, share and improve this program.
  496. XYou are forbidden to forbid anyone else to use, share and improve
  497. Xwhat you give them.   Help stamp out software-hoarding!  */
  498. X
  499. X/* This version of `getopt' appears to the caller like standard Unix `getopt'
  500. X   but it behaves differently for the user, since it allows the user
  501. X   to intersperse the options with the other arguments.
  502. X
  503. X   As `getopt' works, it permutes the elements of `argv' so that,
  504. X   when it is done, all the options precede everything else.  Thus
  505. X   all application programs are extended to handle flexible argument order.
  506. X
  507. X   Setting the environment variable _POSIX_OPTION_ORDER disables permutation.
  508. X   Then the behavior is completely standard.
  509. X
  510. X   GNU application programs can use a third alternative mode in which
  511. X   they can distinguish the relative order of options and other arguments.  */
  512. X
  513. X#include <stdio.h>
  514. X
  515. X#ifdef sparc
  516. X#include <alloca.h>
  517. X#endif
  518. X#ifdef USG
  519. X#define bcopy(s, d, l) memcpy((d), (s), (l))
  520. X#endif
  521. X
  522. X#ifdef AZTEC_C
  523. X#define memcpy(dst,src,n) movmem((src),(dst),(n))
  524. X#define memset(src,value,howmany) setmem((src),(howmany),(value))
  525. X#define bcopy(src,dst,n) movmem((src),(dst),(n))
  526. X#endif
  527. X
  528. X/* For communication from `getopt' to the caller.
  529. X   When `getopt' finds an option that takes an argument,
  530. X   the argument value is returned here.
  531. X   Also, when `ordering' is RETURN_IN_ORDER,
  532. X   each non-option ARGV-element is returned here.  */
  533. X
  534. Xchar *optarg = 0;
  535. X
  536. X/* Index in ARGV of the next element to be scanned.
  537. X   This is used for communication to and from the caller
  538. X   and for communication between successive calls to `getopt'.
  539. X
  540. X   On entry to `getopt', zero means this is the first call; initialize.
  541. X
  542. X   When `getopt' returns EOF, this is the index of the first of the
  543. X   non-option elements that the caller should itself scan.
  544. X
  545. X   Otherwise, `optind' communicates from one call to the next
  546. X   how much of ARGV has been scanned so far.  */
  547. X
  548. Xint optind = 0;
  549. X
  550. X/* The next char to be scanned in the option-element
  551. X   in which the last option character we returned was found.
  552. X   This allows us to pick up the scan where we left off.
  553. X
  554. X   If this is zero, or a null string, it means resume the scan
  555. X   by advancing to the next ARGV-element.  */
  556. X
  557. Xstatic char *nextchar;
  558. X
  559. X/* Callers store zero here to inhibit the error message
  560. X   for unrecognized options.  */
  561. X
  562. Xint opterr = 1;
  563. X
  564. X/* Describe how to deal with options that follow non-option ARGV-elements.
  565. X
  566. X   UNSPECIFIED means the caller did not specify anything;
  567. X   the default is then REQUIRE_ORDER if the environment variable
  568. X   _OPTIONS_FIRST is defined, PERMUTE otherwise.
  569. X
  570. X   REQUIRE_ORDER means don't recognize them as options.
  571. X   Stop option processing when the first non-option is seen.
  572. X   This is what Unix does.
  573. X
  574. X   PERMUTE is the default.  We permute the contents of `argv' as we scan,
  575. X   so that eventually all the options are at the end.  This allows options
  576. X   to be given in any order, even with programs that were not written to
  577. X   expect this.
  578. X
  579. X   RETURN_IN_ORDER is an option available to programs that were written
  580. X   to expect options and other ARGV-elements in any order and that care about
  581. X   the ordering of the two.  We describe each non-option ARGV-element
  582. X   as if it were the argument of an option with character code zero.
  583. X   Using `-' as the first character of the list of option characters
  584. X   requests this mode of operation.
  585. X
  586. X   The special argument `--' forces an end of option-scanning regardless
  587. X   of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  588. X   `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  589. X
  590. Xstatic enum { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER } ordering;
  591. X
  592. X/* Handle permutation of arguments.  */
  593. X
  594. X/* Describe the part of ARGV that contains non-options that have
  595. X   been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  596. X   `last_nonopt' is the index after the last of them.  */
  597. X
  598. Xstatic int first_nonopt;
  599. Xstatic int last_nonopt;
  600. X
  601. X/* Exchange two adjacent subsequences of ARGV.
  602. X   One subsequence is elements [first_nonopt,last_nonopt)
  603. X    which contains all the non-options that have been skipped so far.
  604. X   The other is elements [last_nonopt,optind), which contains all
  605. X    the options processed since those non-options were skipped.
  606. X
  607. X   `first_nonopt' and `last_nonopt' are relocated so that they describe
  608. X    the new indices of the non-options in ARGV after they are moved.  */
  609. X
  610. Xstatic void
  611. Xexchange (argv)
  612. X     char **argv;
  613. X{
  614. X  int nonopts_size
  615. X    = (last_nonopt - first_nonopt) * sizeof (char *);
  616. X  char **temp = (char **) alloca (nonopts_size);
  617. X
  618. X  /* Interchange the two blocks of data in argv.  */
  619. X
  620. X  bcopy (&argv[first_nonopt], temp, nonopts_size);
  621. X  bcopy (&argv[last_nonopt], &argv[first_nonopt],
  622. X         (optind - last_nonopt) * sizeof (char *));
  623. X  bcopy (temp, &argv[first_nonopt + optind - last_nonopt],
  624. X         nonopts_size);
  625. X
  626. X  /* Update records for the slots the non-options now occupy.  */
  627. X
  628. X  first_nonopt += (optind - last_nonopt);
  629. X  last_nonopt = optind;
  630. X}
  631. X
  632. X/* Scan elements of ARGV (whose length is ARGC) for option characters
  633. X   given in OPTSTRING.
  634. X
  635. X   If an element of ARGV starts with '-', and is not exactly "-" or "--",
  636. X   then it is an option element.  The characters of this element
  637. X   (aside from the initial '-') are option characters.  If `getopt'
  638. X   is called repeatedly, it returns successively each of theoption characters
  639. X   from each of the option elements.
  640. X
  641. X   If `getopt' finds another option character, it returns that character,
  642. X   updating `optind' and `nextchar' so that the next call to `getopt' can
  643. X   resume the scan with the following option character or ARGV-element.
  644. X
  645. X   If there are no more option characters, `getopt' returns `EOF'.
  646. X   Then `optind' is the index in ARGV of the first ARGV-element
  647. X   that is not an option.  (The ARGV-elements have been permuted
  648. X   so that those that are not options now come last.)
  649. X
  650. X   OPTSTRING is a string containing the legitimate option characters.
  651. X   A colon in OPTSTRING means that the previous character is an option
  652. X   that wants an argument.  The argument is taken from the rest of the
  653. X   current ARGV-element, or from the following ARGV-element,
  654. X   and returned in `optarg'.
  655. X
  656. X   If an option character is seen that is not listed in OPTSTRING,
  657. X   return '?' after printing an error message.  If you set `opterr' to
  658. X   zero, the error message is suppressed but we still return '?'.
  659. X
  660. X   If a char in OPTSTRING is followed by a colon, that means it wants an arg,
  661. X   so the following text in the same ARGV-element, or the text of the following
  662. X   ARGV-element, is returned in `optarg.  Two colons mean an option that
  663. X   wants an optional arg; if there is text in the current ARGV-element,
  664. X   it is returned in `optarg'.
  665. X
  666. X   If OPTSTRING starts with `-', it requests a different method of handling the
  667. X   non-option ARGV-elements.  See the comments about RETURN_IN_ORDER, above.  */
  668. X
  669. Xint
  670. Xgetopt (argc, argv, optstring)
  671. X     int argc;
  672. X     char **argv;
  673. X     char *optstring;
  674. X{
  675. X  /* Initialize the internal data when the first call is made.
  676. X     Start processing options with ARGV-element 1 (since ARGV-element 0
  677. X     is the program name); the sequence of previously skipped
  678. X     non-option ARGV-elements is empty.  */
  679. X
  680. X  if (optind == 0)
  681. X    {
  682. X      first_nonopt = last_nonopt = optind = 1;
  683. X
  684. X      nextchar = 0;
  685. X
  686. X      /* Determine how to handle the ordering of options and nonoptions.  */
  687. X
  688. X      if (optstring[0] == '-')
  689. X        ordering = RETURN_IN_ORDER;
  690. X      else if (getenv ("_POSIX_OPTION_ORDER") != 0)
  691. X        ordering = REQUIRE_ORDER;
  692. X      else
  693. X        ordering = PERMUTE;
  694. X    }
  695. X
  696. X  if (nextchar == 0 || *nextchar == 0)
  697. X    {
  698. X      if (ordering == PERMUTE)
  699. X        {
  700. X          /* If we have just processed some options following some non-options,
  701. X             exchange them so that the options come first.  */
  702. X
  703. X          if (first_nonopt != last_nonopt && last_nonopt != optind)
  704. X            exchange (argv);
  705. X          else if (last_nonopt != optind)
  706. X            first_nonopt = optind;
  707. X
  708. X          /* Now skip any additional non-options
  709. X             and extend the range of non-options previously skipped.  */
  710. X
  711. X          while (optind < argc
  712. X                 && (argv[optind][0] != '-'
  713. X                     || argv[optind][1] == 0))
  714. X            optind++;
  715. X          last_nonopt = optind;
  716. X        }
  717. X
  718. X      /* Special ARGV-element `--' means premature end of options.
  719. X         Skip it like a null option,
  720. X         then exchange with previous non-options as if it were an option,
  721. X         then skip everything else like a non-option.  */
  722. X
  723. X      if (optind != argc && !strcmp (argv[optind], "--"))
  724. X        {
  725. X          optind++;
  726. X
  727. X          if (first_nonopt != last_nonopt && last_nonopt != optind)
  728. X            exchange (argv);
  729. X          else if (first_nonopt == last_nonopt)
  730. X            first_nonopt = optind;
  731. X          last_nonopt = argc;
  732. X
  733. X          optind = argc;
  734. X        }
  735. X
  736. X      /* If we have done all the ARGV-elements, stop the scan
  737. X         and back over any non-options that we skipped and permuted.  */
  738. X
  739. X      if (optind == argc)
  740. X        {
  741. X          /* Set the next-arg-index to point at the non-options
  742. X             that we previously skipped, so the caller will digest them.  */
  743. X          if (first_nonopt != last_nonopt)
  744. X            optind = first_nonopt;
  745. X          return EOF;
  746. X        }
  747. X
  748. X      /* If we have come to a non-option and did not permute it,
  749. X         either stop the scan or describe it to the caller and pass it by.  */
  750. X
  751. X      if (argv[optind][0] != '-' || argv[optind][1] == 0)
  752. X        {
  753. X          if (ordering == REQUIRE_ORDER)
  754. X            return EOF;
  755. X          optarg = argv[optind++];
  756. X          return 0;
  757. X        }
  758. X
  759. X      /* We have found another option-ARGV-element.
  760. X         Start decoding its characters.  */
  761. X
  762. X      nextchar = argv[optind] + 1;
  763. X    }
  764. X
  765. X  /* Look at and handle the next option-character.  */
  766. X
  767. X  {
  768. X    char c = *nextchar++;
  769. X    char *temp = (char *) index (optstring, c);
  770. X
  771. X    /* Increment `optind' when we start to process its last character.  */
  772. X    if (*nextchar == 0)
  773. X      optind++;
  774. X
  775. X    if (temp == 0 || c == ':')
  776. X      {
  777. X        if (opterr != 0)
  778. X          {
  779. X            if (c < 040 || c >= 0177)
  780. X              fprintf (stderr, "%s: unrecognized option, character code 0%o\n",
  781. X                       argv[0], c);
  782. X            else
  783. X              fprintf (stderr, "%s: unrecognized option `-%c'\n",
  784. X                       argv[0], c);
  785. X          }
  786. X        return '?';
  787. X      }
  788. X    if (temp[1] == ':')
  789. X      {
  790. X        if (temp[2] == ':')
  791. X          {
  792. X            /* This is an option that accepts an argument optionally.  */
  793. X            if (*nextchar != 0)
  794. X              {
  795. X                optarg = nextchar;
  796. X                optind++;
  797. X              }
  798. X            else
  799. X              optarg = 0;
  800. X            nextchar = 0;
  801. X          }
  802. X        else
  803. X          {
  804. X            /* This is an option that requires an argument.  */
  805. X            if (*nextchar != 0)
  806. X              {
  807. X                optarg = nextchar;
  808. X                /* If we end this ARGV-element by taking the rest as an arg,
  809. X                   we must advance to the next element now.  */
  810. X                optind++;
  811. X              }
  812. X            else if (optind == argc)
  813. X              {
  814. X                if (opterr != 0)
  815. X                  fprintf (stderr, "%s: no argument for `-%c' option\n",
  816. X                           argv[0], c);
  817. X                c = '?';
  818. X              }
  819. X            else
  820. X              /* We already incremented `optind' once;
  821. X                 increment it again when taking next ARGV-elt as argument.  */
  822. X              optarg = argv[optind++];
  823. X            nextchar = 0;
  824. X          }
  825. X      }
  826. X    return c;
  827. X  }
  828. X}
  829. X
  830. X#ifdef TEST
  831. X
  832. X/* Compile with -DTEST to make an executable for use in testing
  833. X   the above definition of `getopt'.  */
  834. X
  835. Xint
  836. Xmain (argc, argv)
  837. X     int argc;
  838. X     char **argv;
  839. X{
  840. X  char c;
  841. X  int digit_optind = 0;
  842. X
  843. X  while (1)
  844. X    {
  845. X      int this_option_optind = optind;
  846. X      if ((c = getopt (argc, argv, "abc:d:0123456789")) == EOF)
  847. X        break;
  848. X
  849. X      switch (c)
  850. X        {
  851. X        case '0':
  852. X        case '1':
  853. X        case '2':
  854. X        case '3':
  855. X        case '4':
  856. X        case '5':
  857. X        case '6':
  858. X        case '7':
  859. X        case '8':
  860. X        case '9':
  861. X          if (digit_optind != 0 && digit_optind != this_option_optind)
  862. X            printf ("digits occur in two different argv-elements.\n");
  863. X          digit_optind = this_option_optind;
  864. X          printf ("option %c\n", c);
  865. X          break;
  866. X
  867. X        case 'a':
  868. X          printf ("option a\n");
  869. X          break;
  870. X
  871. X        case 'b':
  872. X          printf ("option b\n");
  873. X          break;
  874. X
  875. X        case 'c':
  876. X          printf ("option c with value `%s'\n", optarg);
  877. X          break;
  878. X
  879. X        case '?':
  880. X          break;
  881. X
  882. X        default:
  883. X          printf ("?? getopt returned character code 0%o ??\n", c);
  884. X        }
  885. X    }
  886. X
  887. X  if (optind < argc)
  888. X    {
  889. X      printf ("non-option ARGV-elements: ");
  890. X      while (optind < argc)
  891. X        printf ("%s ", argv[optind++]);
  892. X      printf ("\n");
  893. X    }
  894. X
  895. X  return 0;
  896. X}
  897. X
  898. X#endif /* TEST */
  899. SHAR_EOF
  900. echo "extracting glob.c"
  901. sed 's/^X//' << \SHAR_EOF > glob.c
  902. X/* File-name wildcard pattern matching for GNU.
  903. X   Copyright (C) 1985, 1988 Free Software Foundation, Inc.
  904. X
  905. X                       NO WARRANTY
  906. X
  907. X  BECAUSE THIS PROGRAM IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY
  908. XNO WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW.  EXCEPT
  909. XWHEN OTHERWISE STATED IN WRITING, FREE SOFTWARE FOUNDATION, INC,
  910. XRICHARD M. STALLMAN AND/OR OTHER PARTIES PROVIDE THIS PROGRAM "AS IS"
  911. XWITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
  912. XBUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  913. XFITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY
  914. XAND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE
  915. XDEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
  916. XCORRECTION.
  917. X
  918. X IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL RICHARD M.
  919. XSTALLMAN, THE FREE SOFTWARE FOUNDATION, INC., AND/OR ANY OTHER PARTY
  920. XWHO MAY MODIFY AND REDISTRIBUTE THIS PROGRAM AS PERMITTED BELOW, BE
  921. XLIABLE TO YOU FOR DAMAGES, INCLUDING ANY LOST PROFITS, LOST MONIES, OR
  922. XOTHER SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  923. XUSE OR INABILITY TO USE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR
  924. XDATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR
  925. XA FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) THIS
  926. XPROGRAM, EVEN IF YOU HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH
  927. XDAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY.
  928. X
  929. X                GENERAL PUBLIC LICENSE TO COPY
  930. X
  931. X  1. You may copy and distribute verbatim copies of this source file
  932. Xas you receive it, in any medium, provided that you conspicuously and
  933. Xappropriately publish on each copy a valid copyright notice "Copyright
  934. X(C) 1988 Free Software Foundation, Inc."; and include following the
  935. Xcopyright notice a verbatim copy of the above disclaimer of warranty
  936. Xand of this License.
  937. X
  938. X  2. You may modify your copy or copies of this source file or
  939. Xany portion of it, and copy and distribute such modifications under
  940. Xthe terms of Paragraph 1 above, provided that you also do the following:
  941. X
  942. X    a) cause the modified files to carry prominent notices stating
  943. X    that you changed the files and the date of any change; and
  944. X
  945. X    b) cause the whole of any work that you distribute or publish,
  946. X    that in whole or in part contains or is a derivative of this
  947. X    program or any part thereof, to be licensed at no charge to all
  948. X    third parties on terms identical to those contained in this
  949. X    License Agreement (except that you may choose to grant more extensive
  950. X    warranty protection to some or all third parties, at your option).
  951. X
  952. X    c) You may charge a distribution fee for the physical act of
  953. X    transferring a copy, and you may at your option offer warranty
  954. X    protection in exchange for a fee.
  955. X
  956. XMere aggregation of another unrelated program with this program (or its
  957. Xderivative) on a volume of a storage or distribution medium does not bring
  958. Xthe other program under the scope of these terms.
  959. X
  960. X  3. You may copy and distribute this program (or a portion or derivative
  961. Xof it, under Paragraph 2) in object code or executable form under the terms
  962. Xof Paragraphs 1 and 2 above provided that you also do one of the following:
  963. X
  964. X    a) accompany it with the complete corresponding machine-readable
  965. X    source code, which must be distributed under the terms of
  966. X    Paragraphs 1 and 2 above; or,
  967. X
  968. X    b) accompany it with a written offer, valid for at least three
  969. X    years, to give any third party free (except for a nominal
  970. X    shipping charge) a complete machine-readable copy of the
  971. X    corresponding source code, to be distributed under the terms of
  972. X    Paragraphs 1 and 2 above; or,
  973. X
  974. X    c) accompany it with the information you received as to where the
  975. X    corresponding source code may be obtained.  (This alternative is
  976. X    allowed only for noncommercial distribution and only if you
  977. X    received the program in object code or executable form alone.)
  978. X
  979. XFor an executable file, complete source code means all the source code for
  980. Xall modules it contains; but, as a special exception, it need not include
  981. Xsource code for modules which are standard libraries that accompany the
  982. Xoperating system on which the executable file runs.
  983. X
  984. X  4. You may not copy, sublicense, distribute or transfer this program
  985. Xexcept as expressly provided under this License Agreement.  Any attempt
  986. Xotherwise to copy, sublicense, distribute or transfer this program is void and
  987. Xyour rights to use the program under this License agreement shall be
  988. Xautomatically terminated.  However, parties who have received computer
  989. Xsoftware programs from you with this License Agreement will not have
  990. Xtheir licenses terminated so long as such parties remain in full compliance.
  991. X
  992. X
  993. XIn other words, you are welcome to use, share and improve this program.
  994. XYou are forbidden to forbid anyone else to use, share and improve
  995. Xwhat you give them.   Help stamp out software-hoarding!  */
  996. X
  997. X
  998. X/* To whomever it may concern: I have never seen the code which most
  999. X Unix programs use to perform this function.  I wrote this from scratch
  1000. X based on specifications for the pattern matching.  */
  1001. X
  1002. X#ifdef AMIGA
  1003. X#include <exec/types.h>
  1004. X#else
  1005. X#include <sys/types.h>
  1006. X#endif
  1007. X
  1008. X#ifdef AMIGA
  1009. X#include "dir.h"
  1010. X#define DP_NAMELEN(x) (x)->d_namlen
  1011. X#endif
  1012. X
  1013. X#ifdef AZTEC_C
  1014. X#define bcopy(s, d, n) movmem((s),(d),(n))
  1015. X#endif
  1016. X
  1017. X#ifdef USG_OLD
  1018. X#include <ndir.h>
  1019. X#include <memory.h>
  1020. X#include <string.h>
  1021. X#define bcopy(s, d, n) ((void) memcpy ((d), (s), (n)))
  1022. X
  1023. Xextern char *memcpy ();
  1024. X
  1025. X#else  /* not USG */
  1026. X
  1027. X#ifdef HPUX
  1028. X#include <sys/dir.h>
  1029. X#endif
  1030. X
  1031. X#ifdef USG
  1032. X#include <sys/dir.h>
  1033. X#include <dirent.h>
  1034. X#include <string.h>
  1035. X#define DP_NAMELEN(x) strlen ((x)->d_name)
  1036. X#define direct dirent
  1037. X#else
  1038. X
  1039. X#if unix
  1040. X#include <sys/dir.h>
  1041. X#include <strings.h>
  1042. Xextern void bcopy ();
  1043. X#endif  /* unix */
  1044. X
  1045. X#endif  /* USG */
  1046. X#endif  /* USG_OLD */
  1047. X
  1048. X#ifndef DP_NAMELEN
  1049. X#define DP_NAMELEN(x) (x)->d_namlen
  1050. X#endif
  1051. X
  1052. X#ifdef  sparc
  1053. X#include <alloca.h>
  1054. X#else
  1055. Xextern char *alloca ();
  1056. X#endif  /* sparc */
  1057. X
  1058. Xextern char *malloc (), *realloc ();
  1059. Xextern void free ();
  1060. X
  1061. X#ifndef NULL
  1062. X#define NULL 0
  1063. X#endif
  1064. X
  1065. X
  1066. X#ifdef unix
  1067. X#define CURRENTDIR "."
  1068. X#endif
  1069. X
  1070. X#ifdef AMIGA
  1071. X#define CURRENTDIR ""
  1072. X#endif
  1073. X
  1074. X/* Global variable which controls whether or not * matches .files.
  1075. X   Non-zero says no match. */
  1076. Xint noglob_dot_filenames = 1;
  1077. X
  1078. X
  1079. Xstatic int glob_match_after_star ();
  1080. X
  1081. X/* Return nonzero if PATTERN has any special globbing chars in it.  */
  1082. Xint
  1083. Xglob_pattern_p (pattern)
  1084. X     char *pattern;
  1085. X{
  1086. X  register char *p = pattern;
  1087. X  register char c;
  1088. X
  1089. X  while ((c = *p++))
  1090. X    {
  1091. X      switch (c)
  1092. X        {
  1093. X        case '?':
  1094. X        case '[':
  1095. X        case '*':
  1096. X          return 1;
  1097. X
  1098. X        case '\\':
  1099. X          if (*p++ == 0) return 0;
  1100. X        default:
  1101. X          ;
  1102. X        }
  1103. X    }
  1104. X
  1105. X  return 0;
  1106. X}
  1107. X
  1108. X
  1109. X/* Match the pattern PATTERN against the string TEXT;
  1110. X   return 1 if it matches, 0 otherwise.
  1111. X
  1112. X   A match means the entire string TEXT is used up in matching.
  1113. X
  1114. X   In the pattern string, `*' matches any sequence of characters,
  1115. X   `?' matches any character, [SET] matches any character in the specified set,
  1116. X   [^SET] matches any character not in the specified set.
  1117. X
  1118. X   A set is composed of characters or ranges; a range looks like
  1119. X   character hyphen character (as in 0-9 or A-Z).
  1120. X   [0-9a-zA-Z_] is the set of characters allowed in C identifiers.
  1121. X   Any other character in the pattern must be matched exactly.
  1122. X
  1123. X   To suppress the special syntactic significance of any of `[]*?^-\',
  1124. X   and match the character exactly, precede it with a `\'.
  1125. X
  1126. X   If DOT_SPECIAL is nonzero,
  1127. X   `*' and `?' do not match `.' at the beginning of TEXT.  */
  1128. X
  1129. Xint
  1130. Xglob_match (pattern, text, dot_special)
  1131. X     char *pattern, *text;
  1132. X     int dot_special;
  1133. X{
  1134. X  register char *p = pattern, *t = text;
  1135. X  register char c;
  1136. X
  1137. X  while ((c = *p++))
  1138. X    {
  1139. X      switch (c)
  1140. X        {
  1141. X        case '?':
  1142. X          if (*t == 0 || (dot_special && t == text && *t == '.')) return 0;
  1143. X          else ++t;
  1144. X          break;
  1145. X
  1146. X        case '\\':
  1147. X          if (*p++ != *t++) return 0;
  1148. X          break;
  1149. X
  1150. X        case '*':
  1151. X          if (dot_special && t == text && *t == '.')
  1152. X            return 0;
  1153. X          return glob_match_after_star (p, t);
  1154. X
  1155. X        case '[':
  1156. X          {
  1157. X            register char c1 = *t++;
  1158. X            register int invert = (*p == '^');
  1159. X
  1160. X            if (invert) p++;
  1161. X
  1162. X            c = *p++;
  1163. X            while (1)
  1164. X              {
  1165. X                register char cstart = c, cend = c;
  1166. X
  1167. X                if (c == '\\')
  1168. X                  {
  1169. X                    cstart = *p++; cend = cstart;
  1170. X                  }
  1171. X
  1172. X                if (!c) return (0);
  1173. X
  1174. X                c = *p++;
  1175. X
  1176. X                if (c == '-')
  1177. X                  {
  1178. X                    cend = *p++;
  1179. X                    if (cend == '\\')
  1180. X                      cend = *p++;
  1181. X                    if (!cend) return (0);
  1182. X                    c = *p++;
  1183. X                  }
  1184. X                if (c1 >= cstart && c1 <= cend) goto match;
  1185. X                if (c == ']')
  1186. X                  break;
  1187. X              }
  1188. X            if (!invert) return 0;
  1189. X            break;
  1190. X
  1191. X          match:
  1192. X            /* Skip the rest of the [...] construct that already matched.  */
  1193. X            while (c != ']')
  1194. X              {
  1195. X                if (!c || !(c = *p++)) return (0);
  1196. X                if (c == '\\') p++;
  1197. X              }
  1198. X            if (invert) return 0;
  1199. X            break;
  1200. X          }
  1201. X
  1202. X        default:
  1203. X          if (c != *t++) return 0;
  1204. X        }
  1205. X    }
  1206. X
  1207. X  if (*t) return 0;
  1208. X  return 1;
  1209. X}
  1210. X
  1211. X/* Like glob_match, but match PATTERN against any final segment of TEXT.  */
  1212. X
  1213. Xstatic int
  1214. Xglob_match_after_star (pattern, text)
  1215. X     char *pattern, *text;
  1216. X{
  1217. X  register char *p = pattern, *t = text;
  1218. X  register char c, c1;
  1219. X
  1220. X  while ((c = *p++) == '?' || c == '*')
  1221. X    {
  1222. X      if (c == '?' && *t++ == 0)
  1223. X        return 0;
  1224. X    }
  1225. X
  1226. X  if (c == 0)
  1227. X    return 1;
  1228. X
  1229. X  if (c == '\\') c1 = *p;
  1230. X  else c1 = c;
  1231. X
  1232. X  for (;;)
  1233. X    {
  1234. X      if ((c == '[' || *t == c1)
  1235. X          && glob_match (p - 1, t, 0))
  1236. X        return 1;
  1237. X      if (*t++ == 0) return 0;
  1238. X    }
  1239. X}
  1240. X
  1241. X/* Return a vector of names of files in directory DIR
  1242. X   whose names match glob pattern PAT.
  1243. X   The names are not in any particular order.
  1244. X   Wildcards at the beginning of PAT do not match an initial period.
  1245. X
  1246. X   The vector is terminated by an element that is a null pointer.
  1247. X
  1248. X   To free the space allocated, first free the vector's elements,
  1249. X   then free the vector.
  1250. X
  1251. X   Return 0 if cannot get enough memory to hold the pointer
  1252. X   and the names.
  1253. X
  1254. X   Return -1 if cannot access directory DIR.
  1255. X   Look in errno for more information.  */
  1256. X
  1257. Xchar **
  1258. Xglob_vector (pat, dir)
  1259. X     char *pat;
  1260. X     char *dir;
  1261. X{
  1262. X  struct globval
  1263. X    {
  1264. X      struct globval *next;
  1265. X      char *name;
  1266. X    };
  1267. X
  1268. X  DIR *d;
  1269. X  register struct direct *dp;
  1270. X  struct globval *lastlink;
  1271. X  register struct globval *nextlink;
  1272. X  register char *nextname;
  1273. X  int count;
  1274. X  int lose;
  1275. X  register char **name_vector;
  1276. X  register int i;
  1277. X
  1278. X  if (!(d = opendir (dir)))
  1279. X    return (char **) -1;
  1280. X
  1281. X  lastlink = 0;
  1282. X  count = 0;
  1283. X  lose = 0;
  1284. X
  1285. X  /* Scan the directory, finding all names that match.
  1286. X     For each name that matches, allocate a struct globval
  1287. X     on the stack and store the name in it.
  1288. X     Chain those structs together; lastlink is the front of the chain.  */
  1289. X  /* Loop reading blocks */
  1290. X  while (1)
  1291. X    {
  1292. X      dp = readdir (d);
  1293. X      if (!dp) break;
  1294. X
  1295. X      if (dp->d_ino && glob_match (pat, dp->d_name, noglob_dot_filenames))
  1296. X        {
  1297. X          nextlink = (struct globval *) alloca (sizeof (struct globval));
  1298. X          nextlink->next = lastlink;
  1299. X          nextname = (char *) malloc (DP_NAMELEN (dp) + 1);
  1300. X          if (!nextname)
  1301. X            {
  1302. X              lose = 1;
  1303. X              break;
  1304. X            }
  1305. X          lastlink = nextlink;
  1306. X          nextlink->name = nextname;
  1307. X          bcopy (dp->d_name, nextname, DP_NAMELEN(dp) + 1);
  1308. X          count++;
  1309. X        }
  1310. X    }
  1311. X  closedir (d);
  1312. X
  1313. X  name_vector = (char **) malloc ((count + 1) * sizeof (char *));
  1314. X
  1315. X  /* Have we run out of memory?  */
  1316. X  if (!name_vector || lose)
  1317. X    {
  1318. X      /* Here free the strings we have got */
  1319. X      while (lastlink)
  1320. X        {
  1321. X          free (lastlink->name);
  1322. X          lastlink = lastlink->next;
  1323. X        }
  1324. X      return 0;
  1325. X    }
  1326. X
  1327. X  /* Copy the name pointers from the linked list into the vector */
  1328. X  for (i = 0; i < count; i++)
  1329. X    {
  1330. X      name_vector[i] = lastlink->name;
  1331. X      lastlink = lastlink->next;
  1332. X    }
  1333. X
  1334. X  name_vector[count] = 0;
  1335. X  return name_vector;
  1336. X}
  1337. X
  1338. X/* Return a new array which is the concatenation of each string in
  1339. X   ARRAY to DIR. */
  1340. X
  1341. Xstatic char **
  1342. Xglob_dir_to_array (dir, array)
  1343. X     char *dir, **array;
  1344. X{
  1345. X  register int i, l;
  1346. X  int add_slash = 0;
  1347. X  char **result;
  1348. X
  1349. X  l = strlen (dir);
  1350. X  if (!l) return (array);
  1351. X
  1352. X  if (dir[l - 1] != '/') add_slash++;
  1353. X
  1354. X  for (i = 0; array[i]; i++);
  1355. X
  1356. X  result = (char **)malloc ((1 + i) * sizeof (char *));
  1357. X  if (!result) return (result);
  1358. X
  1359. X  for (i = 0; array[i]; i++) {
  1360. X    result[i] = (char *)malloc (1 + l + add_slash + strlen (array[i]));
  1361. X    if (!result[i]) return (char **)NULL;
  1362. X    strcpy (result[i], dir);
  1363. X    if (add_slash) strcat (result[i], "/");
  1364. X    strcat (result[i], array[i]);
  1365. X  }
  1366. X  result[i] = (char *)NULL;
  1367. X
  1368. X  /* Free the input array. */
  1369. X  for (i = 0; array[i]; i++) free (array[i]);
  1370. X  free (array);
  1371. X  return (result);
  1372. X}
  1373. X
  1374. X/* Do globbing on PATHNAME.  Return an array of pathnames that match,
  1375. X   marking the end of the array with a null-pointer as an element.
  1376. X   If no pathnames match, then the array is empty (first element is null).
  1377. X   If there isn't enough memory, then return NULL.
  1378. X   If a file system error occurs, return -1; `errno' has the error code.
  1379. X
  1380. X   Wildcards at the beginning of PAT, or following a slash,
  1381. X   do not match an initial period.  */
  1382. X
  1383. Xchar **
  1384. Xglob_filename (pathname)
  1385. X     char *pathname;
  1386. X{
  1387. X  char **result = (char **)malloc (1 * sizeof (char *));
  1388. X  int i, result_size = 1;
  1389. X  char *directory_name, *filename;
  1390. X
  1391. X  if (result) result[0] = (char *)NULL;
  1392. X  else return (result);
  1393. X
  1394. X  /* Find the filename. */
  1395. X  i = strlen (pathname) - 1;
  1396. X
  1397. Xlook_again:
  1398. X  while (i > -1 && pathname[i] != '/') i--;
  1399. X  if (i > 0 && pathname[i - 1] == '\\')
  1400. X    {
  1401. X      --i;
  1402. X      goto look_again;
  1403. X    }
  1404. X  i++;
  1405. X
  1406. X  filename = (char *)alloca (strlen (pathname) - i + 1);
  1407. X  directory_name = (char *)alloca (i + 1);
  1408. X
  1409. X  if (!filename || !directory_name)
  1410. X    {
  1411. X    memory_error:
  1412. X      if (result)
  1413. X        {
  1414. X          for (i = 0; result[i]; i++)
  1415. X            free (result[i]);
  1416. X          free (result);
  1417. X        }
  1418. X      return (char **)NULL;
  1419. X    }
  1420. X
  1421. X  strcpy (filename, pathname + i);
  1422. X  strncpy (directory_name, pathname, i);
  1423. X  directory_name[i] = '\0';
  1424. X
  1425. X  /* If directory_name contains globbing characters, then we have
  1426. X     to expand the previous levels.  Just recurse. */
  1427. X
  1428. X  if (glob_pattern_p (directory_name))
  1429. X    {
  1430. X      char **directories;
  1431. X
  1432. X      if (directory_name[i - 1] == '/')
  1433. X        directory_name[i - 1] = '\0';
  1434. X
  1435. X      directories = glob_filename (directory_name);
  1436. X
  1437. X      if (directories == (char **)NULL) goto memory_error;
  1438. X      if ((directories == (char **)-1) || !(*directories))
  1439. X        return (directories);
  1440. X
  1441. X      /* We have successfully globbed the preceding directory name.
  1442. X         For each name in DIRECTORIES, call glob_vector on it and
  1443. X         FILENAME.  Concatenate the results together. */
  1444. X      for (i = 0; directories[i]; i++)
  1445. X        {
  1446. X          char **temp_results = glob_vector (filename, directories[i]);
  1447. X          /* Handle error cases ... */
  1448. X          if (!temp_results) goto memory_error;
  1449. X          if (temp_results == (char **)-1)
  1450. X            {
  1451. X              /* This filename is probably not a directory.  Ignore it. */
  1452. X            }
  1453. X          else
  1454. X            {
  1455. X              char **array = glob_dir_to_array (directories[i], temp_results);
  1456. X              register int l = 0;
  1457. X
  1458. X              while (array[l]) l++;
  1459. X
  1460. X              result =
  1461. X                (char **)realloc (result, (result_size + l) * sizeof (char *));
  1462. X              for (l = 0; array[l]; l++, result_size++)
  1463. X                result[result_size - 1] = array[l];
  1464. X              result[result_size - 1] = (char *)NULL;
  1465. X              free (array);     /* DO NOT FREE THE STRINGS, THOUGH! */
  1466. X            }
  1467. X        }
  1468. X      /* Free the directories. */
  1469. X      for (i = 0; directories[i]; i++)
  1470. X        free (directories[i]);
  1471. X      free (directories);
  1472. X    }
  1473. X  else
  1474. X    {
  1475. X      /* Otherwise, just return what glob_vector returns appended to
  1476. X         the directory name. */
  1477. X      char **temp_results;
  1478. X
  1479. X      if (*directory_name)
  1480. X        temp_results = glob_vector (filename, directory_name);
  1481. X      else
  1482. X        temp_results = glob_vector (filename, CURRENTDIR);
  1483. X
  1484. X      if (!temp_results || ((int)temp_results) == -1)
  1485. X        return temp_results;
  1486. X
  1487. X      result = glob_dir_to_array (directory_name, temp_results);
  1488. X    }
  1489. X  return result;
  1490. X}
  1491. X
  1492. X
  1493. X
  1494. X#ifdef TEST
  1495. X
  1496. Xmain (argc, argv)
  1497. X     int argc;
  1498. X     char **argv;
  1499. X{
  1500. X  char **value;
  1501. X  int i, index = 1;
  1502. X
  1503. X  while (index < argc) {
  1504. X    value = glob_filename (argv[index]);
  1505. X    if ((int) value == 0)
  1506. X      printf ("Memory exhausted.\n");
  1507. X    else if ((int) value == -1)
  1508. X      perror (argv[index]);
  1509. X    else
  1510. X      for (i = 0; value[i]; i++)
  1511. X        printf ("%s\n", value[i]);
  1512. X    index++;
  1513. X  }
  1514. X  return 0;
  1515. X}
  1516. X
  1517. X#endif /* TEST */
  1518. SHAR_EOF
  1519. echo "End of archive 1 (of 3)"
  1520. # if you want to concatenate archives, remove anything after this line
  1521. exit
  1522.